home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-04-24 | 507 b | 32 lines | [TEXT/MPS ] |
- {$P}
- {MQPlot.p}
- {Copyright © 1988 by Charles F. McMath All rights reserved.}
-
- PROGRAM QPlot;
-
- USES
- { • MacApp }
- UMacApp,
-
- { • Building Blocks }
- UDialog, UPrinting,
-
- { • Implementation Use }
- SANE, ToolUtils, Fonts, Resources, Script, PickerIntf, Packages,
-
- { • the PlotUNIT }
- UQPlot;
-
- VAR
- gQPlotApplication: TQPlotApplication;
-
- BEGIN
- InitUMacApp(5);
- InitUDialog;
- InitPrinting;
-
- New(gQPlotApplication);
- gQPlotApplication.IQPlotApplication(kFileType);
- gQPlotApplication.Run;
- END.
-